Google News
logo
ReactJS - Quiz(MCQ)
What is the name of this component?
class Clock extends React.Component {
   render() {
    return <h1>Look at the time: {time}</h1>;
   }
  }
A)
Clock
B)
Component
C)
React.Component
D)
It does not have a name prop.

Correct Answer :   Clock